home *** CD-ROM | disk | FTP | other *** search
/ cyber.net interactivo 1997 March / inter@ivo 1997-03.iso / wing / halftone.rc_ / halftone.rc
Text File  |  1994-08-13  |  2KB  |  50 lines

  1. /**************************************************************************
  2.  
  3.     HALFTONE.RC - A halftoning demo for WinG
  4.  
  5.  **************************************************************************/
  6. /**************************************************************************
  7.  
  8.     (C) Copyright 1994 Microsoft Corp.  All rights reserved.
  9.  
  10.     You have a royalty-free right to use, modify, reproduce and 
  11.     distribute the Sample Files (and/or any modified version) in 
  12.     any way you find useful, provided that you agree that 
  13.     Microsoft has no warranty obligations or liability for any 
  14.     Sample Application Files which are modified. 
  15.  
  16.  **************************************************************************/
  17.  
  18. #include <windows.h>
  19. #include "halftone.h"
  20.  
  21. AppIcon  ICON    halftone.ico
  22.  
  23. AppAbout DIALOG 22, 17, 144, 75
  24. STYLE WS_POPUP | WS_DLGFRAME
  25. BEGIN
  26.     CTEXT "Microsoft Windows"                   -1, 37,  5, 60, 8
  27.     CTEXT "WinG Halftoning Application"                -1,  0, 14, 144, 8
  28.     CTEXT "Version 1.00"                        -1, 38, 34, 64, 8
  29.     CTEXT "Copyright (c) 1994 Microsoft Corp."   -1,  5, 47,132, 9
  30.     ICON  "AppIcon"                             -1,  9, 23,  0, 0
  31.     DEFPUSHBUTTON "OK"                        IDOK, 53, 59, 32, 14, WS_GROUP
  32. END
  33.  
  34. AppMenu menu
  35. begin
  36.     POPUP "&File"
  37.         begin
  38.             MENUITEM "&Open..."          , MENU_OPEN
  39.             MENUITEM SEPARATOR
  40.             MENUITEM "&About..."         , MENU_ABOUT
  41.             MENUITEM "E&xit"             , MENU_EXIT
  42.         end
  43.     POPUP "&Dither"
  44.         begin
  45.             MENUITEM "&Custom Dither"          , MENU_WING
  46.             MENUITEM "Use &GDI"         , MENU_GDI
  47.         end
  48. end
  49. 
  50.